home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PVDRIVER / ACTIX131.ZIP / USTATION / INSTALL.BAT next >
DOS Batch File  |  1992-12-30  |  3KB  |  88 lines

  1. @echo off
  2. echo off
  3. cls
  4. rem  **************************************************************************
  5. rem  **                                                                      **
  6. rem  **         Installation Batch File:                                     **
  7. rem  **         GraphicsENGINE Graphics Accelerator                                  **
  8. rem  **                     and                                              **
  9. rem  **            Intergraph's Microstation PC                              **
  10. rem  **                                                                      **
  11. rem  **************************************************************************
  12. echo ACTIX Systems, Inc.
  13. echo Device Driver Install Disk
  14. echo for Microstation PC
  15. echo .
  16. rem
  17. rem first, make certain we're not logged onto the A drive
  18. rem
  19. if NOT EXIST install.bat goto Continue
  20. if EXIST \DGN goto Continue
  21. rem
  22. rem since we are, lets go to the C: drive
  23. rem
  24. c:
  25. cd \
  26. echo Searching for Microstation on C: drive.
  27. goto ins_ust3
  28. :Continue
  29. echo Searching for Microstation on the default drive.
  30. cd \
  31. :ins_ust3
  32. if EXIST %id%%ip%install.sta del %id%%ip%install.sta
  33. if NOT EXIST \ustation\mgds.exe goto ins_ust4
  34. echo MicroStation found.
  35. echo please wait while files are coping...
  36. cd \ustation\drivers
  37. copy %id%%ip%mgls3.exe mgls3.exe > %id%%ip%install.sta
  38. echo .
  39. copy %id%%ip%mgls3.mgl mgls3.mgl > %id%%ip%install.sta
  40. echo .
  41. cd \ustation
  42. copy %id%%ip%remove.exe remove.exe > %id%%ip%install.sta
  43. echo .
  44. echo Please configure Microstation for "ACTIX GraphicsENGINE"
  45. pause
  46. usconfig
  47. echo MicroStation 3.xx driver installation completed.
  48. :ins_ust4
  49. if NOT EXIST \ustn40\mgds.exe goto All_Done
  50. echo MicroStation PC 4.0 [beta version] found.
  51. echo please wait while files are coping...
  52. cd \ustn40\drivers
  53. copy %id%%ip%mgls3.exe mgls3.exe > %id%%ip%install.sta
  54. echo .
  55. copy %id%%ip%mgls3.mgl mgls3.mgl > %id%%ip%install.sta
  56. echo .
  57. cd ..
  58. copy %id%%ip%remove.exe remove.exe > %id%%ip%install.sta
  59. echo .
  60. echo Please configure Microstation 4.0 for "ACTIX GraphicsENGINE"
  61. pause
  62. usconfig
  63. echo MicroStation 4.0 driver installation completed.
  64. goto All_Done
  65. :USAGE
  66. echo .
  67. echo In order to be installed correctly, the following conditions must
  68. echo be true:
  69. echo .
  70. echo   *   This install disk must be in drive %id%.
  71. echo   *   The install disk cannot be write protected.
  72. echo   *   The CURRENT drive must contain MicroStation PC.
  73. echo .
  74. echo No other exceptions are allowed by this installation program.
  75. echo .
  76. echo To install in non-standard directories, please refer to the instructions
  77. echo in the manual. (%id%%ip%README.DOC)
  78. goto end
  79. :All_Done
  80. rem
  81. rem Here we will tell the user that installation is completed.
  82. rem Alex Jen
  83. if NOT EXIST %id%%ip%install.sta goto USAGE
  84. del %id%%ip%install.sta
  85. echo ACTIX GraphicsENGINE driver installation is now completed!
  86. :end
  87. pause
  88.